QAEngineGestalt
You can use theQAEngineGestalt
function to get information about a drawing engine.
TQAError QAEngineGestalt ( const TQAEngine *engine, TQAGestaltSelector selector, void *response);
engine
- A drawing engine.
selector
- A selector that determines what kind of information is to be returned about the specified drawing engine. See "Gestalt Selectors" (page 1-57) for complete information about the available selectors and the information they return.
response
- A pointer to a buffer into which the returned information is copied. Your application is responsible for allocating this buffer. The size and meaning of the data copied to the buffer depend on the selector you pass in the
selector
parameter.DESCRIPTION
TheQAEngineGestalt
function returns, in theresponse
parameter, a buffer of information about features of the type specified by theselector
parameter associated with the drawing engine specified by theengine
parameter.SEE ALSO
See "Finding a Drawing Engine" (page 1-16) for code illustrating how to callQAEngineGestalt
.